/* ------equipment--------- */
/* Dropdown Container */
.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 4 columns */
    text-align: left;
    gap: 15px; /* Space between grid items */
    background: #f9f9f9; /*Light background for dropdown*/
    padding: 15px;
    /* border: 1px solid #ddd; */
    border-radius: 5px;
    font-size: 1.0em;
    position: absolute;
    top: 100%;
    left: 0px;
    min-width: 100px;
    z-index: 1000;
    display: none;
    
  }
  
  /* Show Dropdown on Hover */
  .has-children:hover .dropdown-grid {
    display: grid;
  }
  
  /* Dropdown Links */
  .dropdown-grid li {
    list-style: none;
  }
  
  .dropdown-grid .nav-link {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 2px 5px;
    transition: background 0.3s;
  }
  
  .dropdown-grid .nav-link:hover {
    background: black;
    color: #fff;
    border-radius: 4px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .dropdown-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
      gap: 8px;
    }
  }
  
  @media (max-width: 480px) {
    .dropdown-grid {
      grid-template-columns: 1fr; /* Single column on mobile */
    }
  }
  
  /* --------equipments end--------- */
  
  /* body {
    font-family: "Poppins", sans-serif;
    background-color: #fff;
    height: 200vh;
    position: relative;
  }
  
  body:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
  }
  
  body.offcanvas-menu:before {
    opacity: 1;
    z-index: 1002;
    visibility: visible;
  }
   */
  /* ------------------ */
  .mega-box{
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    margin-top: 10px;
    top: 70px;
    opacity: 0;
    visibility: hidden;
  }
  .mega-box .content{
    background: #2c5e9f;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    opacity: 1;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  }
  .mega-box .content .row{
    width: calc(50% - 30px);
    line-height: 45px;
  }
  .content .row img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .content .row header{
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
  }
  .content .row .mega-links{
    margin-left: -40px;
    border-left: 1px solid rgba(255,255,255,0.09);
  }
  .row .mega-links li{
    padding: 0 20px;
  }
  .row .mega-links li a{
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
    border-bottom: 1px solid rgb(255, 255, 255);
  }
  .row .mega-links li a:hover{
    color: #f2f2f2;
    /*background: #000000;*/
    /*border-radius: 5px;*/
  }
  .wrapper .btn{
    color: #000000;
    font-size: 20px;
    cursor: pointer;
    display: none;
  }
  .wrapper .btn.close-btn{
    position: absolute;
    right: 30px;
    top: 10px;
  }
  
  @media screen and (max-width: 1024px) {
    .wrapper .btn{
      display: block;
    }
    .wrapper .nav-links{
      position: fixed;
      height: 100vh;
      width: 100%;
      max-width: 350px;
      top: 0;
      left: -100%;
      background: #a6a6a6;
      display: block;
      padding: 50px 10px;
      line-height: 50px;
      overflow-y: auto;
      box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
      transition: all 0.3s ease;
    }
    /* custom scroll bar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #242526;
    }
    ::-webkit-scrollbar-thumb {
      background: #3A3B3C;
    }
    #menu-btn:checked ~ .nav-links{
      left: 0%;
    }
    #menu-btn:checked ~ .btn.menu-btn{
      display: none;
    }
    #close-btn:checked ~ .btn.menu-btn{
      display: block;
    }
    .nav-links li{
      margin: 15px 10px;
    }
    .nav-links li a{
      padding: 0 20px;
      display: block;
      font-size: 20px;
    }
    .nav-links .drop-menu{
      position: static;
      opacity: 1;
      top: 65px;
      visibility: visible;
      padding-left: 20px;
      width: 100%;
      max-height: 0px;
      overflow: hidden;
      box-shadow: none;
      transition: all 0.3s ease;
    }
    #showDrop:checked ~ .drop-menu,
    #showMega:checked ~ .mega-box{
      max-height:fit-content;
    }
    .nav-links .desktop-item{
      display: none;
    }
    .nav-links .mobile-item{
      display: block;
      color: #2c5e9f;
      font-size: 20px;
      font-weight: 500;
      padding-left: 20px;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    .nav-links .mobile-item:hover{
      color:#ffffff;
      background:  #2c5e9f;
    }
    .drop-menu li{
      margin: 0;
    }
    .drop-menu li a{
      /*border-radius: 5px;*/
      font-size: 18px;
    }
    .mega-box{
      position: static;
      top: 65px;
      opacity: 1;
      visibility:hidden;
      padding: 0 20px;
      max-height: 0px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .mega-box .content{
      box-shadow: none;
      flex-direction: column;
      padding: 20px 20px 0 20px;
    }
    .mega-box .content .row{
      width: 147%;
      /*margin-bottom: 15px;*/
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2){
      border-top: 0px;
    }
    .content .row .mega-links{
      border-left: 0px;
      padding-left: 15px;
    }
    .row .mega-links li{
      margin: 0;
    }
    .content .row header{
      font-size: 19px;
    }
  }
  nav input{
    display: none;
  }
  
  .drop-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
  }
  
  .drop-menu li {
    position: relative;
  }
  
  .drop-menu li:hover > .sub-menu {
    display: block;
  }
  
  .sub-menu {
    display: none;
    position: absolute;
    left: 160px;
    top: 0;
    background-color: #f9f9f9;
    min-width: 160px;
  }
  
  li:hover .drop-menu {
    display: block;
  }
  /* -------------------- */
  
  p {
    color: #b3b3b3;
    font-weight: 300;
  
  }
  
  h1, 
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6 {
    font-family: "Poppins", sans-serif;
  }
  
  a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
  }
  
  a,
  a:hover {
    text-decoration: none !important;
  }
  
  /* .hero {
    height: 77vh;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  } */
  
  .site-navbar-wrap {
    position: absolute;
    z-index: 99;
    width: 100%;
    left: 0;
  }
  
  .site-navbar-wrap a {
    color: #fff;
  }
  
  .site-navbar-wrap .site-navbar-top {
    font-size: 0.8rem;
  }
  
  .site-navbar-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  
  .site-navbar {
    margin-bottom: 0px;
    width: 100%;
  }
  
  .site-navbar .site-logo {
    font-weight: 200;
    line-height: 0;
    top: -7px;
    position: relative;
  }
  
  .site-navbar .site-logo a {
    font-weight: 200;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .site-navbar .site-navigation .site-menu {
    margin-bottom: 0;
  }
  
  .site-navbar .site-navigation .site-menu a {
    text-decoration: none !important;
    display: inline-block;
    font-weight: 900;
  }
  
  .site-navbar .site-navigation .site-menu>li {
    display: inline-block;
    padding: 10px 5px;
  }
  
  .site-navbar .site-navigation .site-menu>li>a {
    /* padding: 20px 10px;
    color: rgba(255, 255, 255, 0.6); */
    font-size: 15px;
    text-decoration: none !important;
  }
  
  .site-navbar .site-navigation .site-menu>li>a.active {
    color: #fff;
  }
  
  .site-navbar .site-navigation .site-menu>li>a:hover {
    color: #fff;
  }
  
  .site-navbar .site-navigation .site-menu>li:last-child {
    padding-right: 0;
  }
  
  .site-navbar .site-navigation .site-menu>li:last-child>a {
    padding-right: 0;
  }
  
  .site-navbar .site-navigation .site-menu .has-children {
    position: relative;
  }
  
  .site-navbar .site-navigation .site-menu .has-children>a {
    position: relative;
    /* padding-right: 20px; */
  }
  
  .site-navbar .site-navigation .site-menu .has-children>a:before {
    position: absolute;
    content: "\e313";
    font-size: 0px;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Poppins", sans-serif;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown {
    visibility: hidden;
    opacity: 0;
    top: 100%;
    position: absolute;
    text-align: left;
    -webkit-box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 0px 0;
    margin-top: 20px;
    margin-left: 0px;
    background: #fff;
    -webkit-transition: 0.2s 0s;
    -o-transition: 0.2s 0s;
    transition: 0.2s 0s;
    border-radius: 4px;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
    position: absolute;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
    border-color: rgba(7, 95, 149, 0);
    border-bottom-color: #fff;
    border-width: 10px;
    margin-left: -10px;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown a {
    font-size: 16px;
    text-transform: none;
    letter-spacing: normal;
    -webkit-transition: 0s all;
    -o-transition: 0s all;
    transition: 0s all;
    color: #3675b3;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown a.active {
    color: #007bff;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown .active>a {
    color: #fff !important;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li:first-child>a {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li:last-child>a {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li>a {
    padding: 9px 20px;
    display: block;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li>a:hover {
    background: #ebeef0;
    color: #212529;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>a:before {
    content: "\e315";
    right: 5px;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>.dropdown,
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>ul {
    left: 100%;
    top: 0;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:hover>a,
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:active>a,
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:focus>a {
    background: #ebeef0;
    color: #212529;
  }
  
  .site-navbar .site-navigation .site-menu .has-children:hover>a,
  .site-navbar .site-navigation .site-menu .has-children:focus>a,
  .site-navbar .site-navigation .site-menu .has-children:active>a {
    color: #fff;
  }
  
  .site-navbar .site-navigation .site-menu .has-children:hover,
  .site-navbar .site-navigation .site-menu .has-children:focus,
  .site-navbar .site-navigation .site-menu .has-children:active {
    cursor: pointer;
  }
  
  .site-navbar .site-navigation .site-menu .has-children:hover>.dropdown,
  .site-navbar .site-navigation .site-menu .has-children:focus>.dropdown,
  .site-navbar .site-navigation .site-menu .has-children:active>.dropdown {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    margin-top: 0px;
    visibility: visible;
    opacity: 1;
  }
  
  .site-mobile-menu {
    width: 300px;
    position: fixed;
    right: 0;
    z-index: 2000;
    padding-top: 20px;
    background: #fff;
    height: calc(100vh);
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
  }
  
  .offcanvas-menu .site-mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  
  .site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
    float: right;
    margin-top: 8px;
  }
  
  .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
    font-size: 30px;
    display: inline-block;
    padding-left: 10px;
    padding-right: 0px;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
  }
  
  .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
    color: #dee2e6;
  }
  
  .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
    float: left;
    margin-top: 10px;
    margin-left: 0px;
  }
  
  .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
    display: inline-block;
    text-transform: uppercase;
  }
  
  .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
    max-width: 70px;
  }
  
  .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
    text-decoration: none;
  }
  
  .site-mobile-menu .site-mobile-menu-body {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 20px;
    height: calc(100vh - 52px);
    padding-bottom: 150px;
  }
  
  .site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
  }
  
  .site-mobile-menu .site-nav-wrap a {
    padding: 10px 20px;
    display: block;
    position: relative;
    color: #212529;
  }
  
  .site-mobile-menu .site-nav-wrap a.active,
  .site-mobile-menu .site-nav-wrap a:hover {
    color: #007bff;
  }
  
  .site-mobile-menu .site-nav-wrap li {
    position: relative;
    display: block;
  }
  
  .site-mobile-menu .site-nav-wrap li.active>a {
    color: #007bff;
  }
  
  .site-mobile-menu .site-nav-wrap .arrow-collapse {
    position: absolute;
    right: 0px;
    top: 10px;
    z-index: 20;
    width: 36px;
    height: 36px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
  }
  
  /* .site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
    background: #f8f9fa;
  } */
  
  .site-mobile-menu .site-nav-wrap .arrow-collapse:before {
    font-size: 12px;
    z-index: 20;
    font-family: "Poppins", sans-serif;
    /* content: "\f078"; */
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
    -ms-transform: translate(-50%, -50%) rotate(-180deg);
    transform: translate(-50%, -50%) rotate(-180deg);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
  }
  
  .site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .site-mobile-menu .site-nav-wrap>li {
    display: block;
    position: relative;
    float: left;
    width: 100%;
  }
  
  .site-mobile-menu .site-nav-wrap>li>a {
    padding-left: 20px;
    font-size: 20px;
  }
  
  .site-mobile-menu .site-nav-wrap>li>ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .site-mobile-menu .site-nav-wrap>li>ul>li {
    display: block;
  }
  
  .site-mobile-menu .site-nav-wrap>li>ul>li>a {
    padding-left: 40px;
    font-size: 16px;
  }
  
  .site-mobile-menu .site-nav-wrap>li>ul>li>ul {
    padding: 0;
    margin: 0;
  }
  
  .site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
    display: block;
  }
  
  .site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
    font-size: 16px;
    padding-left: 60px;
  }
  
  .sticky-wrapper {
    position: absolute;
    z-index: 100;
    width: 100%;
  }
  
  .sticky-wrapper+.site-blocks-cover {
    margin-top: 96px;
  }
  
  .sticky-wrapper .site-navbar {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
  }
  
  .sticky-wrapper .site-navbar ul li.active a {
    color: #ffffff;
  }
  
  .sticky-wrapper.is-sticky .site-navbar {
    background-color: #ffffff;
  }
  
  .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li {
    display: inline-block;
    padding: 10px 5px;
  }
  
  .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li:last-child {
    padding-right: 0;
  }
  
  .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li:last-child>a {
    padding-right: 0;
  }
  
  /* .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li.has-children>a {
    padding-right: 20px;
  } */
  
  .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a {
    /* padding: 10px 10px; */
    color: rgba(30, 30, 30, 0.6);
    font-size: 15px;
  }
  
  .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a:hover {
    color: rgb(0, 0, 0) !important;
  }
  
  .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a.active {
    color: #121212 !important;
  }
  
  .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li.active a {
    color: rgb(18, 17, 17);
  }
  
  /* ========== Hero Section ================ */
html {
  scroll-behavior: smooth;
}

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7fc;
    text-align: center;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #001f3f, #005f9e);
    color: white;
    padding: 150px 20px;
}

.hero-section h1 {
    margin-bottom: 10px;
    margin-top: 60px;
    font-weight: bold;
    font-size: 30px;
}

.search-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    position: relative;
}

.search-container input {
    padding: 10px;
    width: 350px;
    border-radius: 5px;
    border: none;
}

.search-container button {
    padding: 10px;
    background-color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 5px;
}

.suggestions-container {
    position: absolute;
    top: 45px; 
    left: 0;
    right: 0;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 150px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    width: 100%; 
}

.suggestions-container div {
    padding: 8px 15px;
    cursor: pointer;
    color: #333; /* Updated font color to dark gray */
}

.suggestions-container div:hover {
    background-color: #f0f0f0;
}

/* Highlighted text styling */
.highlight {
    background-color: yellow;
    font-weight: bold;
    display: inline; /* Ensures it behaves like normal text */
    padding: 0 2px; /* Keeps a slight buffer without affecting layout */
    white-space: nowrap; /* Prevents breaking inside long words */
    line-height: inherit; /* Matches surrounding text */
}

/* Popular Links */
.popular-links {
    margin-top: 10px;
    font-size: 14px;
}

.popular-links a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

/* Featured Article */
.featured-article {
    background: white;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.featured-article h3{
  font-size: 18px;
  font-weight: bold;
}

.article-box {
    background: #e3f2fd;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
}

.article-box p{
  color: black; 
  font-weight: bold;
}

/* Help Topics */
.help-topics {
    padding: 70px 20px;
    background-image: url(./../images/guide.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* min-height: 100vh;  */
}

.help-topics h2 {
    font-size: 24px; 
    font-weight: bold;
    text-align: center;
}

.help-topics p {
    color: black;
    padding-top: 10px;
    text-align: center;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.topic-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

.topic-card:hover {
    transform: translateY(-5px);
}

.topic-card h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}

.topic-card p{
  text-align: left;
}

.pdf-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #0077b6, #00b4d8); /* Blue gradient */
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 180, 216, 0.3);
    text-align: center;
    width: fit-content;
}

.pdf-button:hover {
    background: linear-gradient(135deg, #005f91, #009dc4);
    box-shadow: 0 6px 14px rgba(0, 180, 216, 0.5);
    transform: scale(1.05);
}

/* Tablet Screens (Medium Screens) */
@media (max-width: 1024px) {
    .help-topics {
        padding: 50px 15px;
    }

    .help-topics h2 {
        font-size: 26px;
    }

    .topics-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Smaller min size */
    }

    .pdf-button {
        font-size: 13px;
        padding: 10px 15px;
    }
}

/* Mobile Devices (Small Screens) */
@media (max-width: 768px) {
    .help-topics {
        padding: 40px 10px;
    }

    .help-topics h2 {
        font-size: 24px;
    }

    .help-topics p {
        font-size: 14px;
    }

    .topics-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 15px;
    }

    .topic-card {
        padding: 15px;
    }

     .topic-card h4, .topic-card p{
      text-align: center;
    }

    .topic-card h4 {
        font-size: 16px;
    }

    .pdf-button {
        font-size: 12px;
        padding: 10px 14px;
        width: 100%; /* Full width for easy tap */
    }
}

/* Extra Small Screens (Very Small Devices) */
@media (max-width: 480px) {
    .help-topics {
        padding: 30px 10px;
    }

    .help-topics h2 {
        font-size: 22px;
    }

    .help-topics p {
        font-size: 13px;
    }

    .topic-card h4 {
        font-size: 15px;
    }

    .topic-card h4, .topic-card p{
      text-align: center;
    }

    .pdf-button {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* FAQs */
.faq-section {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  background-color: white;
  padding: 20px;
  gap: 20px;
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
}

.image-container {
  height: 400px;
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 60px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-content {
  flex: 1;
  padding: 20px;
}

.faq-header {
  font-size: 24px; 
  font-weight: bold;
  margin-bottom: 15px;
  text-align: left;
  color: black;
}

.faq-subheader {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 10px;
  margin-top: -10px;
  color: #888;
  text-align: left;
}

.faq-item {
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #333;
  text-align: left;
  width: 100%; /* Ensures full width */
   position: relative;
    gap: 10px;
}

.faq-question span {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.faq-question .toggle-icon {
  font-size: 22px;
  color: blue;
  transition: transform 0.3s ease;
  margin-left: auto; /* Pushes the icon to the far right */
  display: inline-block; 
   position: absolute;
    right: 0; /* Moves the icon to the extreme right */
    /* top: 50%;
    transform: translateY(-50%); */
     text-align: right;
     line-height: 1; /* Prevents shifting when clicked */
      flex-shrink: 0; /* Prevents resizing */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  color: #555;
  /* margin-top: 5px; */
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  /* padding: 0 10px; */
  text-align: left;
}

.faq-question,
.faq-answer {
    display: block;  /* Ensures full width */
    word-wrap: break-word; /* Allows natural wrapping */
    overflow-wrap: break-word; /* Prevents breaking inside words */
}

/* Medium Screens (Tablets & Smaller Laptops) */
@media (max-width: 1024px) {
  .faq-section {
    flex-direction: column;
    align-items: center;
    width: 90%;
    padding: 20px;
    margin-top: -1px;
    /* margin-top: 15vh; */
  }

  .image-container {
    width: 100%;
    height: 350px;
  }

  .faq-content {
    width: 100%;
    padding: 15px;
  }

  .faq-header {
    font-size: 24px;
  }

  .faq-subheader {
    font-size: 14px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-question .toggle-icon {
    font-size: 20px;
  }

  .faq-answer {
    font-size: 15px;
  }
}

/* Mobile Devices (Small Screens) */
@media (max-width: 768px) {
  .faq-section {
    /* margin-top: 10vh; */
    padding: 15px;
    margin-top: -1px;
  }

  .image-container {
    height: 300px;
  }

  .faq-content {
    padding: 10px;
    margin-top: -5px;
  }

  .faq-header {
    font-size: 22px;
    text-align: center;
  }

  .faq-subheader {
    text-align: center;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer {
    font-size: 14px;
  }
}

/* Extra Small Screens (Phones) */
@media (max-width: 480px) {
  .faq-section {
    padding: 10px;
    margin-top: -1px;
    
  }

  .image-container {
    height: 250px;
  }

  .faq-header {
    font-size: 20px;
  }

  .faq-subheader {
    font-size: 13px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer {
    font-size: 13px;
  }
}


.contact-section {
        text-align: center;
        background-color: #f8f8f2; /* Light background */
        padding: 30px 20px;
        margin-top: 20px;
        border-radius: 10px;
    }

    .contact-text {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        margin-bottom: 15px;
    }

    .contact-button {
        background-color: #d9534f; /* Red button */
        color: white;
        border: none;
        padding: 12px 24px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .contact-button:hover {
        background-color: #ffd700;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .contact-text {
            font-size: 16px;
        }
        .contact-button {
            font-size: 14px;
            padding: 10px 20px;
        }
    }

    @media (max-width: 480px) {
        .contact-text {
            font-size: 14px;
        }
        .contact-button {
            font-size: 12px;
            padding: 8px 16px;
        }
    }

/*Additional Articles  */
 /* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

/* Articles Section */
.articles-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    background-image: url(./../images/article-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.articles-container {
    width: 80%;
    max-width: 900px;
    text-align: left;
   
}

.articles-section h2 {
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
}

/* Article Cards */
.article-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* Article Image */
.article-image img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

/* Article Content */
.article-content {
    flex: 1;
}

.article-content h4{
  font-weight: bold;
  font-size: 16px;
}

/* Short Description */
.short-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

/* Read More / Read Less with Arrow */
.toggle-container {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    color: #3498db;
    margin-top: 5px;
    user-select: none;
    transition: color 0.3s ease;
}

.toggle-container:hover {
    color: #2980b9;
}

.toggle-text{
  font-size: 14px;
}

/* Only Rotate the Arrow */
.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 0.7rem;

}

/* Full Content - Hidden Initially */
.full-content {
    display: none;
    font-size: 1rem;
    color: #444;
    margin-top: 10px;
}

/* Show Full Content when Active */
.article-card.active .full-content {
    display: block;
}

/* Rotate the Arrow Only */
.article-card.active .arrow {
    transform: rotate(180deg);
}


  /* ------------main start----- */

  /* Section Styling */
.e-documents {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .e-documents h2 {
    font-size: 2em;
    color: #325fdb;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
  }
  
  .e-documents p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
  }
  
  /* Grid Layout */
  .document-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .doc-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .doc-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .doc-box img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .doc-box p {
    padding: 10px;
    background: #325fdb;
    color: #fff;
    font-size: 1em;
    margin: 0;
    font-family: "Poppins", sans-serif;
    text-align: center;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .document-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .document-grid {
      grid-template-columns: 1fr;
    }
  }
  
  
    /*==================== 
      Footer 
  ====================== */
  
  /* Main Footer */
  footer .main-footer{	padding: 20px 0; text-align: left;	background: #252525;}
  footer ul{	padding-left: 0;	list-style: none;}
  
  /* Copy Right Footer */
  .footer-copyright {	background: #222;	padding: 5px 0;}
  .footer-copyright .logo {    display: inherit;}
  .footer-copyright nav {    float: right;    margin-top: 5px;}
  .footer-copyright nav ul {	list-style: none;	margin: 0;	padding: 0;}
  .footer-copyright nav ul li {	border-left: 1px solid #505050;	display: inline-block;	line-height: 12px;	margin: 0;	padding: 0 8px;}
  .footer-copyright nav ul li a{	color: #969696;}
  .footer-copyright nav ul li:first-child {	border: medium none;	padding-left: 0;}
  .footer-copyright p {	color: #969696;	margin: 2px 0 0;}
  
  /* Footer Top */
  .footer-top{	background: #252525;	padding-bottom: 30px;	margin-bottom: 30px;	border-bottom: 3px solid #222;}
  
  /* Footer transparent */
  footer.transparent .footer-top, footer.transparent .main-footer{	background: transparent;}
  footer.transparent .footer-copyright{	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.3) ;}
  
  /* Footer light */
  footer.light .footer-top{	background: #f9f9f9;}
  footer.light .main-footer{	background: #f9f9f9;}
  footer.light .footer-copyright{	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.3) ;}
  
  /* Footer 4 */
  .footer- .logo {    display: inline-block;}
  
  /*==================== 
      Widgets 
  ====================== */
  .widget{	padding: 20px;	margin-bottom: 40px;}
  .widget.widget-last{	margin-bottom: 0px;}
  .widget.no-box{	padding: 0;	background-color: transparent;	margin-bottom: 40px;
      box-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none;}
  .widget.subscribe p{	margin-bottom: 18px;}
  .widget li a{	color: #ff8d1e;}
  .widget li a:hover{	color: #4b92dc;}
  .widget-title {margin-bottom: 20px;}
  .widget-title span {background: #839FAD none repeat scroll 0 0;display: block; height: 1px;margin-top: 25px;position: relative;width: 20%;}
  .widget-title span::after {background: inherit;content: "";height: inherit;    position: absolute;top: -4px;width: 50%;}
  .widget-title.text-center span,.widget-title.text-center span::after {margin-left: auto;margin-right:auto;left: 0;right: 0;}
  .widget .badge{	float: right;	background: #7f7f7f;}
  
  .typo-light h1, 
  .typo-light h2, 
  .typo-light h3, 
  .typo-light h4, 
  .typo-light h5, 
  .typo-light h6,
  .typo-light p,
  .typo-light div,
  .typo-light span,
  .typo-light small{	color: #fff;}
  
  ul.social-footer2 {	margin: 0;padding: 0;	width: auto;}
  ul.social-footer2 li {display: inline-block;padding: 0;}
  ul.social-footer2 li a:hover {background-color:#ff8d1e;}
  ul.social-footer2 li a {display: block;	height:30px;width: 30px;text-align: center;}
  .btn{background-color: #ff8d1e; color:#fff;}
  .btn:hover, .btn:focus, .btn.active {background: #4b92dc;color: #fff;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 250ms ease-in-out 0s;
  -moz-transition: all 250ms ease-in-out 0s;
  -ms-transition: all 250ms ease-in-out 0s;
  -o-transition: all 250ms ease-in-out 0s;
  transition: all 250ms ease-in-out 0s;
  
  }
  
  
  